home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 11 / 0 / DISK1105.ZIP / DATA / P1901-01.IN < prev    next >
Text File  |  1988-06-01  |  2KB  |  56 lines

  1.         '**********************************************************
  2.         '
  3.         '               A.B.C. Distributing Company
  4.         '
  5.         '**********************************************************
  6.  
  7.         '..........................................................
  8.         ' the product is Distributed to the markets
  9.         '..........................................................
  10.  
  11.         PRODUCT #100=Product AA
  12.  
  13.                 PLANT @1=Flint
  14.  
  15.         DISTRIBUTE #100  TO     #1/Chicago,  #2/Cleveland,  #3/Dayton,
  16.                                 #4/Minneapolis;
  17.  
  18.                 PLANT @2=Jamesville
  19.  
  20.         DISTRIBUTE #100   TO    #1,       #2,            #3,
  21.                                 #4;
  22.  
  23.                 PLANT @3=St.Louis
  24.  
  25.         DISTRIBUTE #100   TO    #1,       #2,            #3,
  26.                                 #4;
  27.  
  28.         '..........................................................
  29.         '                shipping  cost
  30.         '..........................................................
  31.  
  32.         '      to    CHICAGO     CLEVELAND   DAYTON    MINNEAPOLIS
  33.         'FLINT...........Plant @1
  34.               COST @1 #1=27.00, @1 #2=23.00, @1 #3=31.00, @1 #4=69.00;
  35.  
  36.         'JAMESVILLE......Plant @2
  37.               COST @2 #1=10.00, @2 #2=45.00, @2 #3=40.00, @2 #4=32.00;
  38.  
  39.         'ST.LOUIS........Plant @3
  40.               COST @3 #1=30.00, @3 #2=54.00, @3 #3=35.00, @3 #4=57.00;
  41.         '..........................................................
  42.         '         Production and demand limits
  43.         '..........................................................
  44.         SET
  45.                 @1 #100/Product AA(Flint)    =150.
  46.                 @2 #100/Product AA(Jmsville) =40.
  47.                 @3 #100/Product AA(St.Louis) =80.;
  48.         SET
  49.                 #1/Chicago demand      =90.
  50.                 #2/Cleveland demand    =70.
  51.                 #3/Dayton demand       =50.
  52.                 #4/Minneapolis demand  =60.;
  53.  
  54.  
  55. 
  56.